*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

.navbar{
    width: 100%;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    background: rgb(249, 2, 2);
    color: white;
    margin-bottom: 30px 0;
    box-shadow: 0px 0 10px 0px rgb(239, 156, 156);
    
}

.brand-name{
    font-size: 2rem;
    margin: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
}

.navbar a{
    color: white;
    text-decoration: none;
}





.navbar-link ul{
    margin-right: 50px;
    padding: 0;
    display: flex;
}

.navbar-link li{
    list-style: none;
}

.navbar-link li a{
    padding: 1.5rem;
    color: white;
    text-decoration: none;
    display: block;
    font-size: 17px;
}

.navbar-link li:hover{
    background: white;
}

.navbar-link li a:hover{
    color: black;
}

.toggle-button{
    position: absolute;
    top: 1.2rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}


.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}











.conteiner{
    width: 100%;
    height: auto;
    margin: auto;
    font-family: 'PT Sans Caption', sans-serif;
}


.book_now{
    width: 100%;
    height: 45vh;
    color: white;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(book_Backgroung.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.book_now h1{
    text-align: center;
    margin: auto;
    padding: 25vh 0;  
    font-size: 55px;
    font-family: 'PT Sans Caption', sans-serif;
}

.appointment{
    width: 100%;
    text-align: center;
    margin-top: 70px;
}

.appointment h1{
    font-weight: 100;
    font-size: 2.2rem;
    margin: auto auto 15px auto;
}


.pahrapha{
    width: 70%;
    height: auto;
    margin: auto;
}
.pahrapha p{
    padding: 1px 0;
    font-family: 'arial';
    letter-spacing: 1px;
    line-height: 1.5;
}


.content{
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 10px auto;

}

.details_box{
    width: 100%;
    max-width: 1100;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
    padding: 0px 15px;
    font-size: 'arial';
    
}

.box{
    padding: 20px;
    margin: 0 5px;
    box-shadow: 0px 0 10px 0px rgb(239, 156, 156);
}

.box i{
    background: red;
    padding: 15px;
    color: white;
    margin-bottom: 15px;
    font-size: 22px;
    border-radius: 30px;

}

.contact h3{
    margin-bottom: 10px;
    letter-spacing: 1px;

}

.contact a{
    font-size: 16px;
    color: blue;
    
}

.information{
    width: 100%;
    height: auto;
    margin-top: 15px;
    padding: 40px 30px;
    background: none;
}

.information h1{
    text-align: center;
    margin: 25px auto;
    font-weight: 500;
}

.enquiry{
    margin: 5px auto;
    padding: 5px 10px;
    width: 80%;
    height: auto;
    text-align: left;
}

.enquiry input{
    width: 100%;
    display: grid;
    padding: 10px;
    margin: 25px auto;
    font-size: 16px;
    outline: none;
    border: none;
    box-shadow: 0px 0 10px 0px rgb(239, 156, 156);

}

.enquiry textarea{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin: 13px 0;
    outline: none;
    resize: none;
    border: none;
    box-shadow: 0px 0 10px 0px rgb(239, 156, 156);
}

.enquiry button{
    width: 40%;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    background: red;
    color: white;
    border: none;
    margin: 15px 0;
    border-radius: 0 15px 0px 15px;
    transition: 1s;
}

.enquiry button:hover{
    background: white;
    color: black;
    transition: 1s;
}














.conteiner5{
    width: 100%;
    height: auto;
    background: red;
    color: white;
    padding: 20px 70px;
}

.conteiner5 .footer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px , 1fr));
    grid-gap: 10px;
    padding: 50px 0px;
}

.footer .footer_box1{
    height: auto;
    margin-bottom: 35px;
}

.footer_box1 h2{
    text-transform: uppercase;
    margin-bottom: 15px;

}


.footer_box1 a{
    width: 30%;
    color: white;
    margin: 5px 0;
    text-decoration: none;
    display: grid;
    font-size: 15px;
}

.footer_box1 a:hover{
    text-decoration: underline white;
}

.footer_box1 p{
    color: white;
    margin: 5px 0;
    display: grid;
    font-size: 15px;
}

.conteiner5 .all_rights{
    text-align: center;
    font-size: 14px;
}













@media (max-width: 990px) {
    .brand-name{
        font-size: 2rem;
        margin: 1rem;
        font-weight: normal;
        letter-spacing: normal;
    }
    

    .toggle-button{
        display: flex;
    }

    .navbar-link{
        display: none;
        width: 100%;

    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;

    }   

    .navbar-link ul{
        width: 100%;
        flex-direction: column;
    }

    .navbar-link li{
        text-align: center;
    }

    .navbar-link li a{
        padding: .5rem 1rem;
  
    }

    .navbar-link.active{
        display: flex;

    }


@media only screen and (max-width: 450px) {
    .brand-name{
        font-size: 28px;
    }

}

@media only screen and (max-width: 395px) {
    .brand-name{
        font-size: 25px;
    }

}

@media only screen and (max-width: 352px) {
    .brand-name{
        font-size: 22px;
    }

}

@media only screen and (max-width: 320px) {
    .brand-name{
        font-size: 20px;
    }

}






    
    
@media only screen and (max-width: 990px) {
   .conteiner5{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 15px 10px;
   }


   .conteiner5 .footer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px , 1fr));
    grid-gap: 10px;
    padding: 0;
    }

    .footer_box1 h2{
        font-size: 18px;
    }

    .footer_box1 a{
        width: auto;
    }

    .footer_box1 p{
        font-size: 14px;
    }


    .appointment h1{
        font-weight: 700;
        font-size: 25px;
        padding: 10px;
    }



    .information{
        padding: 10px 15px ;
    }


    .book_now h1{
        font-weight: bold;
        font-size: 35px;
    }

    .pahrapha{
        width: 100%;
        padding: 10px;
    }


    .pahrapha p{
        padding: 10px;
        font-size: 17px;
        line-height: 1.5;
    }

    .blue{
        font-size: 18px;
    }


    .enquiry{
        width: 100%;
        padding: 0;
    }

    .box{
        margin: 10px;
    }


  
 
    
}













































}













